home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / FREENET / BRODIE / INTERNET / !InternetD / c / events < prev    next >
Text File  |  1995-05-15  |  567b  |  29 lines

  1. #include "inetd.h"
  2. #include "c:kernel.h"
  3. #include "oslib:wimp.h"
  4. #include "oslib:osmodule.h"
  5.  
  6.  
  7. int event_handler(_kernel_swi_regs *, void *);
  8. _kernel_oserror *internetd_commands(char *, int, int, void *);
  9.  
  10. int event_handler(_kernel_swi_regs *r, void *pw)
  11. {
  12.         UNUSED(r);
  13.         UNUSED(pw);
  14.         return 1;
  15. }
  16.  
  17.  
  18. _kernel_oserror *internetd_commands(char *arg_string, int argc, int cmd_no, void *pw)
  19. {
  20.         UNUSED(argc);
  21.         UNUSED(pw);
  22.         if (cmd_no == 0) {
  23.                 xosmodule_enter("InternetD",arg_string);
  24.         }
  25.  
  26.         return NULL;
  27. }
  28.  
  29.